home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / HardwareProjects / i2clib38.lha / Glue / SAS-C / src / makefile.manx < prev    next >
Encoding:
Makefile  |  1994-01-03  |  282 b   |  19 lines

  1. #
  2. # Makefile for 'i2c.lib' and 'i2cnb.lib'
  3. #
  4.  
  5. ASMFLAGS=
  6.  
  7. .asm.o:
  8.     as $(ASMFLAGS) -iINCLUDE: $*.asm
  9.  
  10. OBJS = AllocI2c.o FreeI2c SetDelay.o InitI2c.o SendI2c.o ReceiveI2c.o
  11.  
  12. i2c.lib: $(OBJS)
  13.     lb i2c.lib $(OBJS)
  14.     Delete $(OBJS)
  15.  
  16. i2cnb.lib: $(OBJS)
  17.     lb i2cnb.lib $(OBJS)
  18.     Delete $(OBJS)
  19.